home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / game / role / ldmud-3.2-bin.lha / mud / doc / efun / find_object < prev    next >
Text File  |  2001-04-06  |  589b  |  24 lines

  1. SYNOPSIS
  2.         object find_object(string str)
  3.  
  4. DESCRIPTION
  5.         Find an object with the object_name str. If the object isn't loaded,
  6.         it will not be found.
  7.  
  8. EXAMPLE
  9.         object obj;
  10.         obj = find_object("std/thing");
  11.         obj = find_object("std/thing.c");
  12.         obj = find_object("/std/thing");
  13.         obj = find_object("/std/thing.c");
  14.         
  15.         All four statements are equal.
  16.  
  17.         obj = find_object("/std/thing#42");
  18.  
  19.         returns the clone whose object_name is "std/thing#42", if
  20.         it exists.
  21.  
  22. SEE ALSO
  23.         object_name(E), to_object(E)
  24.